home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue24 / appbar11 / APPBAR11.ZIP / DEMOAPP.DPR < prev    next >
Encoding:
Text File  |  1997-06-29  |  278 b   |  16 lines

  1. program DemoApp;
  2.  
  3. uses
  4.   Forms,
  5.   Demo in 'Demo.pas' {DemoBar},
  6.   DemoProp in 'DemoProp.pas' {PropDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TDemoBar, DemoBar);
  13.   Application.CreateForm(TPropDlg, PropDlg);
  14.   Application.Run;
  15. end.
  16.